```
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean:    #071e29;
  --deep:     #030f17;
  --lagoon:   #0e7490;
  --teal:     #14b8a6;
  --sand:     #e8d5a3;
  --coral:    #f97316;
  --foam:     #f0fafa;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--foam);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(14,116,144,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(20,184,166,0.08) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
  animation: tide 12s ease-in-out infinite alternate;
}

@keyframes tide {
  0%   { opacity: 0.8; }
  100% { opacity: 1; }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(6,30,41,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20,184,166,0.08);
}

.logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }

.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--lagoon));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.1rem; color: white;
  box-shadow: 0 0 20px rgba(20,184,166,0.4);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--white); letter-spacing: .02em;
}

.logo-text span { color: var(--teal); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-size: .8rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,250,250,0.8); text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--deep); background: var(--teal);
  padding: .6rem 1.4rem; border-radius: 4px;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 16px rgba(20,184,166,0.3);
}

.nav-cta:hover { background: var(--sand); transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(20,184,166,0.3);
  padding: .4rem 1.2rem; border-radius: 99px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 14ch; margin: 0 auto 1.5rem;
  animation: fadeUp .9s .1s ease both;
}

h1 em { font-style: italic; color: var(--teal); }
h1 .sand { color: var(--sand); }

.hero-sub {
  font-size: 1.1rem; font-weight: 300;
  line-height: 1.8; color: rgba(240,250,250,0.82);
  max-width: 52ch; margin: 0 auto 3.5rem;
  animation: fadeUp 1s .2s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s .3s ease both;
}

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 2rem; border-radius: 4px;
  transition: all .25s; cursor: pointer; border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--lagoon));
  color: white; box-shadow: 0 8px 28px rgba(20,184,166,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(20,184,166,0.5); }

.btn-ghost {
  background: transparent; color: var(--foam);
  border: 1.5px solid rgba(240,250,250,0.2);
}

.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(240,250,250,0.75);
  animation: fadeUp 1s .6s ease both;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(20,184,166,0.6), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* STATS */
.stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20,184,166,0.08);
  border-bottom: 1px solid rgba(20,184,166,0.08);
}

.stat {
  padding: 3.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(20,184,166,0.1);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 300;
  color: var(--teal); line-height: 1; display: block;
}

.stat-label {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(240,250,250,0.82); margin-top: .5rem;
}

/* SECTIONS */
section { position: relative; z-index: 2; padding: 8rem 6rem; }

.section-tag {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px; background: var(--teal);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--teal); }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about-text p {
  font-size: 1rem; font-weight: 300;
  line-height: 1.9; color: rgba(240,250,250,0.88); margin-bottom: 1.4rem;
}

.about-text p strong { color: var(--sand); font-weight: 500; }

.about-card {
  background: rgba(14,116,144,0.18);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 16px; padding: 3rem;
  backdrop-filter: blur(10px);
}

.about-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  margin-bottom: 2rem; color: var(--sand);
}

.value-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }

.value-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

.value-text h4 { font-size: .9rem; font-weight: 600; color: var(--foam); margin-bottom: .25rem; }
.value-text p { font-size: .82rem; font-weight: 300; color: rgba(240,250,250,0.72); line-height: 1.6; }

/* SUBSIDIARIES */
.subsidiaries { background: rgba(14,116,144,0.1); }

.sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }

.sub-card {
  background: rgba(3,15,23,0.8);
  border: 1px solid rgba(20,184,166,0.08);
  border-radius: 12px; padding: 2.5rem;
  text-decoration: none; transition: all .3s;
  position: relative; overflow: hidden; display: block;
}

.sub-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--lagoon));
  transform: scaleX(0); transition: transform .3s;
}

.sub-card:hover { border-color: rgba(20,184,166,0.4); transform: translateY(-4px); }
.sub-card:hover::before { transform: scaleX(1); }

.sub-logo {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--lagoon));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(20,184,166,0.3);
}

.sub-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--foam); margin-bottom: .5rem;
}

.sub-tag {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}

.sub-card p {
  font-size: .9rem; font-weight: 300;
  line-height: 1.7; color: rgba(240,250,250,0.75); margin-bottom: 1.5rem;
}

.sub-link { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }

.sub-coming { opacity: .45; pointer-events: none; }

.coming-badge {
  display: inline-block; font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(20,184,166,0.08); color: var(--teal);
  padding: .2rem .7rem; border-radius: 99px; margin-left: .6rem; vertical-align: middle;
}

/* MISSION */
.mission { text-align: center; padding: 8rem 4rem; }

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; font-style: italic;
  line-height: 1.5; max-width: 70ch; margin: 2rem auto;
  color: rgba(240,250,250,0.85);
}

.mission-quote span { color: var(--teal); }

/* CONTACT */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.contact-info p {
  font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: rgba(240,250,250,0.8); margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: 1rem; font-size: .9rem; color: rgba(240,250,250,0.8);
}

.contact-detail span:first-child { color: var(--teal); font-size: 1rem; }

.contact-form {
  background: rgba(14,116,144,0.08);
  border: 1px solid rgba(20,184,166,0.08);
  border-radius: 16px; padding: 3rem;
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,250,250,0.72); margin-bottom: .5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(3,15,23,0.8);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 6px; padding: .85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem; font-weight: 300; color: var(--foam);
  outline: none; transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }

.form-group select option { background: var(--deep); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
footer {
  position: relative; z-index: 2;
  background: var(--deep);
  border-top: 1px solid rgba(20,184,166,0.1);
  padding: 3rem 6rem;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-left p { font-size: .75rem; font-weight: 300; color: rgba(240,250,250,0.75); margin-top: .4rem; }

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(240,250,250,0.8); text-decoration: none; transition: color .2s;
}

.footer-links a:hover { color: var(--teal); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 5rem 1.5rem; }
  .about, .contact { grid-template-columns: 1fr; gap: 3rem; }
  .sub-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(20,184,166,0.1); }
  footer { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; text-align: center; }
}
```
